home *** CD-ROM | disk | FTP | other *** search
/ Aminet 37 / Aminet 37 (2000)(Schatztruhe)[!][Jun 2000].iso / Aminet / dev / lang / sofa.lha / sofa / smalleiffel / lib_se / local_name1.e < prev    next >
Text File  |  2000-03-25  |  4KB  |  141 lines

  1. --          This file is part of SmallEiffel The GNU Eiffel Compiler.
  2. --          Copyright (C) 1994-98 LORIA - UHP - CRIN - INRIA - FRANCE
  3. --            Dominique COLNET and Suzanne COLLIN - colnet@loria.fr
  4. --                       http://SmallEiffel.loria.fr
  5. -- SmallEiffel is  free  software;  you can  redistribute it and/or modify it
  6. -- under the terms of the GNU General Public License as published by the Free
  7. -- Software  Foundation;  either  version  2, or (at your option)  any  later
  8. -- version. SmallEiffel is distributed in the hope that it will be useful,but
  9. -- WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
  10. -- or  FITNESS FOR A PARTICULAR PURPOSE.   See the GNU General Public License
  11. -- for  more  details.  You  should  have  received a copy of the GNU General
  12. -- Public  License  along  with  SmallEiffel;  see the file COPYING.  If not,
  13. -- write to the  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
  14. -- Boston, MA 02111-1307, USA.
  15. --
  16. class LOCAL_NAME1
  17.    --
  18.    -- A local name in some declaration list.
  19.    --
  20.  
  21. inherit LOCAL_ARGUMENT1; LOCAL_NAME;
  22.  
  23. creation make
  24.  
  25. feature {NONE}
  26.  
  27.    is_used: BOOLEAN;
  28.          -- Is the local name really used inside the living
  29.          -- code ?
  30.  
  31. feature {NONE}
  32.  
  33.    make(sp: POSITION; n: STRING) is
  34.       require
  35.          not sp.is_unknown;
  36.          n = string_aliaser.item(n)
  37.       do
  38.          start_position := sp;
  39.          to_string := n;
  40.       ensure
  41.          start_position = sp;
  42.          to_string = n
  43.       end;
  44.  
  45. feature
  46.  
  47.    assertion_check(tag: CHARACTER) is
  48.       do
  49.       end;
  50.  
  51.    to_runnable(ct: TYPE): like Current is
  52.       require
  53.      result_type /= Void
  54.       local
  55.          rt: TYPE;
  56.       do
  57.          rt := result_type.to_runnable(ct);
  58.          if rt = Void then
  59.             eh.add_position(result_type.start_position);
  60.             error(start_position,"Bad local variable.");
  61.          elseif rt.run_class = Void then
  62.         -- To make this RUN_CLASS live.
  63.          end;
  64.          if rt = result_type then
  65.             Result := Current;
  66.          else
  67.             Result := twin;
  68.             Result.set_result_type(rt);
  69.          end;
  70.       end;
  71.  
  72.    produce_c: BOOLEAN is
  73.          -- True if C code must be produced (local is really
  74.          -- used or it is a user expanded with possibles
  75.          -- side effects).
  76.       local
  77.          t: TYPE;
  78.       do
  79.          if is_used then
  80.             Result := true;
  81.          else
  82.             t := result_type.run_type;
  83.             if t.is_expanded then
  84.                Result := not t.is_basic_eiffel_expanded;
  85.             end;
  86.          end;
  87.       end;
  88.  
  89. feature {LOCAL_VAR_LIST}
  90.  
  91.    c_declare is
  92.          -- C declaration of the local.
  93.       local
  94.          t: TYPE;
  95.       do
  96.          if produce_c then
  97.             t := result_type.run_type;
  98.             tmp_string.clear;
  99.             t.c_type_for_result_in(tmp_string);
  100.             tmp_string.extend(' ');
  101.             cpp.put_string(tmp_string);
  102.             cpp.print_local(to_string);
  103.             cpp.put_character('=');
  104.             t.c_initialize;
  105.             cpp.put_string(fz_00);
  106.          elseif run_control.debug_check then
  107.             warning(start_position,"Unused local variable.");
  108.          end;
  109.       end;
  110.  
  111.    c_frame_descriptor(t: TYPE) is
  112.       require
  113.          run_control.no_check
  114.       do
  115.          if produce_c then
  116.             c_frame_descriptor_local_count.increment;
  117.             c_frame_descriptor_format.append(to_string);
  118.             c_frame_descriptor_locals.append("(void**)&_");
  119.             c_frame_descriptor_locals.append(to_string);
  120.             c_frame_descriptor_locals.extend(',');
  121.             t.c_frame_descriptor;
  122.          end;
  123.       end;
  124.  
  125. feature {DECLARATION_LIST}
  126.  
  127.    name_clash(ct: TYPE) is
  128.       do
  129.          name_clash_for(ct,"Conflict between local/feature name (VRLE).");
  130.       end;
  131.  
  132. feature {LOCAL_NAME2}
  133.  
  134.    set_is_used is
  135.       do
  136.          is_used := true;
  137.       end;
  138.  
  139. end -- LOCAL_NAME1
  140.  
  141.